If /sbin/ isn't in the path, udev rules will erroneously not get
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Mon, 14 Nov 2005 10:05:34 +0000 (11:05 +0100)
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Mon, 14 Nov 2005 10:05:34 +0000 (11:05 +0100)
installed.

Signed-off-by: Nivedita Singhvi <niv@us.ibm.com>
install.sh
linux-2.6-xen-sparse/drivers/xen/console/xencons_ring.c
linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_comms.c
tools/check/check_hotplug
tools/examples/Makefile
tools/libxc/xc_linux_build.c
tools/libxc/xc_linux_restore.c
tools/libxc/xc_private.c
tools/libxc/xc_vmx_build.c
tools/libxc/xenctrl.h

index 49e88a2556b9ec792b9320ce84d8583c934d029c..46e22abe6c1e6f05728bf82ea33c542453f39a39 100755 (executable)
@@ -27,7 +27,7 @@ echo "Installing Xen from '$src' to '$dst'..."
 cp -fdRL $src/etc/init.d/* $dst/etc/init.d/
 echo "All done."
 
-if [ -x /sbin/udev ] && [ ! -z `udev -V` ] && [ `/sbin/udev -V` -ge 059 ]; then
+if [ -x /sbin/udev ] && [ ! -z `/sbin/udev -V` ] && [ `/sbin/udev -V` -ge 059 ]; then
   cp -f $src/etc/udev/rules.d/*.rules $dst/etc/udev/rules.d/
 else
   cp -f $src/etc/hotplug/*.agent $dst/etc/hotplug/
index ccbcf5e7db7b0ee6079f508cab150791035c0891..2d6eb044b60ffc2b6f039580a37bd20d17795d6c 100644 (file)
@@ -30,6 +30,12 @@ static inline struct xencons_interface *xencons_interface(void)
        return mfn_to_virt(xen_start_info->console_mfn);
 }
 
+static inline void notify_daemon(void)
+{
+       /* Use evtchn: this is called early, before irq is set up. */
+       notify_remote_via_evtchn(xen_start_info->console_evtchn);
+}
+
 int xencons_ring_send(const char *data, unsigned len)
 {
        int sent = 0;
@@ -47,8 +53,7 @@ int xencons_ring_send(const char *data, unsigned len)
        wmb();
        intf->out_prod = prod;
 
-       /* Use evtchn: this is called early, before irq is set up. */
-       notify_remote_via_evtchn(xen_start_info->console_evtchn);
+       notify_daemon();
 
        return sent;
 }      
@@ -70,9 +75,11 @@ static irqreturn_t handle_input(int irq, void *unused, struct pt_regs *regs)
                                1, regs);
        }
 
-       wmb();
+       mb();
        intf->in_cons = cons;
 
+       notify_daemon();
+
        return IRQ_HANDLED;
 }
 
@@ -102,6 +109,9 @@ int xencons_ring_init(void)
 
        xencons_irq = err;
 
+       /* In case we have in-flight data after save/restore... */
+       notify_daemon();
+
        return 0;
 }
 
index 9e301a620fecefc0cd0386a3cc8be36cdf7ada6d..82f656d462fbef9ff658ae47d467600a42e7b469 100644 (file)
@@ -36,7 +36,7 @@
 #include <asm-xen/xenbus.h>
 #include "xenbus_comms.h"
 
-static int xenbus_irq      = 0;
+static int xenbus_irq;
 
 extern void xenbus_probe(void *); 
 extern int xenstored_ready; 
@@ -51,7 +51,7 @@ static inline struct xenstore_domain_interface *xenstore_domain_interface(void)
 
 static irqreturn_t wake_waiting(int irq, void *unused, struct pt_regs *regs)
 {
-       if(unlikely(xenstored_ready == 0)) {
+       if (unlikely(xenstored_ready == 0)) {
                xenstored_ready = 1; 
                schedule_work(&probe_work); 
        } 
@@ -189,9 +189,6 @@ int xb_init_comms(void)
 
        xenbus_irq = err;
 
-       /* FIXME zero out page -- domain builder should probably do this*/
-       memset(mfn_to_virt(xen_start_info->store_mfn), 0, PAGE_SIZE);
-
        return 0;
 }
 
index df8a3280965d938ee4168a307f3940d3a4aca350..61feb4c6a6e976183cfcf44574c112559e668818 100644 (file)
@@ -7,7 +7,7 @@ function error {
    exit 1
 }
 
-if [ -x /sbin/udev ] && [ ! -z `udev -V` ] && [ `udev -V` -ge 059 ]; then
+if [ -x /sbin/udev ] && [ ! -z `/sbin/udev -V` ] && [ `/sbin/udev -V` -ge 059 ]; then
   exit 0
 fi
 
index 844a7f733077542deda5e4f05af46f74dcdea7a6..39223bd41dd68ed66c4d97411a7652fa256bbd31 100644 (file)
@@ -41,7 +41,7 @@ DE = $(shell readlink -f $(DESTDIR))
 ifeq ($(findstring $(DI),$(DE)),$(DI))
 HOTPLUGS=install-hotplug install-udev
 else
-ifeq ($(shell [ -x /sbin/udev ] && [ ! -z `udev -V` ] && [ `/sbin/udev -V` -ge 059 ] && echo 1),1)
+ifeq ($(shell [ -x /sbin/udev ] && [ ! -z `/sbin/udev -V` ] && [ `/sbin/udev -V` -ge 059 ] && echo 1),1)
 HOTPLUGS=install-udev
 else
 HOTPLUGS=install-hotplug
index ff3ecf84f6e00fb743b68341eda1f13159aae2c2..fc6fc9d9048be7de1aaa400e3dff5ed8fc7807a6 100644 (file)
@@ -619,7 +619,9 @@ static int setup_guest(int xc_handle,
 
     *store_mfn = page_array[(vstoreinfo_start-dsi.v_start) >> PAGE_SHIFT];
     *console_mfn = page_array[(vconsole_start-dsi.v_start) >> PAGE_SHIFT];
-
+    if ( xc_clear_domain_page(xc_handle, dom, *store_mfn) ||
+         xc_clear_domain_page(xc_handle, dom, *console_mfn) )
+        goto error_out;
 
     start_info = xc_map_foreign_range(
         xc_handle, dom, PAGE_SIZE, PROT_READ|PROT_WRITE,
index 9abd19a5c22d585bfb420d23351661b8f650fb66..198628ab971944089a27ce3194586b6c51ea9701 100644 (file)
@@ -12,8 +12,6 @@
 #include "xg_private.h"
 #include "xg_save_restore.h"
 
-
-
 /* max mfn of the whole machine */
 static uint32_t max_mfn; 
 
index 75e179a7c7e85606f8cbaa56f30f2fcdef245286..e5a9c566d5de7733f8365b584f8f148aad908667 100644 (file)
@@ -336,6 +336,19 @@ int xc_copy_to_domain_page(int xc_handle,
     return 0;
 }
 
+int xc_clear_domain_page(int xc_handle,
+                         uint32_t domid,
+                         unsigned long dst_pfn)
+{
+    void *vaddr = xc_map_foreign_range(
+        xc_handle, domid, PAGE_SIZE, PROT_WRITE, dst_pfn);
+    if ( vaddr == NULL )
+        return -1;
+    memset(vaddr, 0, PAGE_SIZE);
+    munmap(vaddr, PAGE_SIZE);
+    return 0;
+}
+
 unsigned long xc_get_filesz(int fd)
 {
     uint16_t sig;
index ea83366813d59aa2a33729bd130fad82f50d1ae5..47cc1271cb02ccc23a214f0d19c225e73b951e87 100644 (file)
@@ -495,6 +495,9 @@ static int setup_guest(int xc_handle,
     }
 
     *store_mfn = page_array[(v_end-2) >> PAGE_SHIFT];
+    if ( xc_clear_domain_page(xc_handle, dom, *store_mfn) )
+        goto error_out;
+
     shared_page_frame = (v_end - PAGE_SIZE) >> PAGE_SHIFT;
 
     if ((e820_page = xc_map_foreign_range(
index 66f7eff875f0a20d566098034827859d3f9d520a..8afd5b01b29e3d48c3f50ea780dcab50a99843e7 100644 (file)
@@ -424,6 +424,9 @@ int xc_ia64_get_pfn_list(int xc_handle, uint32_t domid,
 int xc_copy_to_domain_page(int xc_handle, uint32_t domid,
                           unsigned long dst_pfn, void *src_page);
 
+int xc_clear_domain_page(int xc_handle, uint32_t domid,
+                         unsigned long dst_pfn);
+
 int xc_ia64_copy_to_domain_pages(int xc_handle, uint32_t domid,
         void* src_page, unsigned long dst_pfn, int nr_pages);